home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / newlooklib.lha / newlook / lastitext.c < prev    next >
C/C++ Source or Header  |  1993-10-24  |  162b  |  11 lines

  1. /*
  2.  *  LASTITEXT.C
  3.  */
  4.  
  5. #include "newlook.h"
  6.  
  7. struct IntuiText *LastIText(struct IntuiText *it)
  8. {
  9.   return (it && it->NextText) ? LastIText(it->NextText) : it;
  10. }
  11.